home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc B) / Acorn User China CD-ROM (UK) (Disc B).bin / STUTTGART / FROMUTS / UNIXLIB37B / src_c_errno < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-22  |  289 b   |  20 lines

  1. #ifdef ARCH
  2.  
  3. #ifdef __STDC__
  4. static char sccs_id[] = "@(#) errno.c 1.3 "__DATE__" HJR";
  5. #else
  6. static char sccs_id[] = "@(#) errno.c 1.3 26/9/90 HJR";
  7. #endif
  8.  
  9. /* errno.c (c) Copyright 1990 H.Rogers */
  10.  
  11. #include <errno.h>
  12.  
  13. #ifdef __STDC__
  14. volatile int errno;
  15. #else
  16. int errno;
  17. #endif
  18.  
  19. #endif
  20.